home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-30 | 476 b | 27 lines | [TEXT/KAHL] |
- /******************************************************************************
-
- Shell.c
-
- A Shell main file for writing programs with the
- THINK Class Library
-
- Copyright © 1990 Symantec Corporation. All rights reserved.
-
- ******************************************************************************/
-
-
- #include "CShellApp.h"
-
-
- void main()
-
- {
- CShellApp *ShellApp;
-
- ShellApp = new CShellApp;
-
- ShellApp->IShellApp();
- ShellApp->Run();
- ShellApp->Exit();
- }
-